home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CDOS10.ARJ / MAIN.C < prev    next >
C/C++ Source or Header  |  1992-07-07  |  1KB  |  40 lines

  1. /*
  2.    Program       :
  3.    Version       :
  4.    Revision Date :
  5.    Programmer(s) :
  6.  
  7.    Description   :
  8. */
  9.  
  10.  
  11. /*----- Library Header Files ----------------------------------------------*/
  12. /*----- Global Macros -----------------------------------------------------*/
  13.  
  14. #include "stdmacro.h"
  15.  
  16.  
  17. /*----- Global TypeDefs ---------------------------------------------------*/
  18.  
  19. #include "stdtype.h"
  20.  
  21.  
  22. /*----- Local Header Files ------------------------------------------------*/
  23. /*----- Local Macros ------------------------------------------------------*/
  24. /*----- Local TypeDefs ----------------------------------------------------*/
  25. /*----- Global Variables --------------------------------------------------*/
  26. /*----- Main Function -----------------------------------------------------*/
  27.  
  28. int main
  29.  
  30. (int argc, char **argv)                          /* Command line arguments */
  31.  
  32. {
  33.  
  34.  
  35.    return 0 ;                                /* Program normal termination */
  36. }                                                              /* End main */
  37.  
  38.  
  39. /*----- End Main Source File ----------------------------------------------*/
  40.